home *** CD-ROM | disk | FTP | other *** search
- ; *******************************************************
- ; Example 1 - Create a word window with a new blank document,
- ; then add some pictures to the document.
- ; *******************************************************
- ;
- #include <Word.au3>
-
- $sPath = @WindowsDir & "\"
- $search = FileFindFirstFile($sPath & "*.bmp")
-
- ; Check if the search was successful
- If $search = -1 Then
- MsgBox(0, "Error", "No images found")
- Exit
- EndIf
-
- $oWordApp = _WordCreate ()
- $oDoc = _WordDocGetCollection ($oWordApp, 0)
-
- While 1
- $file = FileFindNextFile($search)
- If @error Then ExitLoop
- $oShape = _WordDocAddPicture ($oDoc, $sPath & $file, 0, 1)
- If Not @error Then $oShape.Range.InsertAfter (@CRLF)
- WEnd
-
- ; Close the search handle
- FileClose($search)